home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / lcppb.zip / LCPPANS.ZIP / TOUPPER.CPP < prev    next >
C/C++ Source or Header  |  1991-07-08  |  417b  |  22 lines

  1. // toupper.cpp -- Convert standard input to uppercase
  2.  
  3. #include <iostream.h>
  4. #include <stdio.h>
  5. #include <ctype.h>
  6.  
  7. main()
  8. {
  9.   char c;
  10.  
  11.   while ((c = getchar()) != EOF)
  12.     putchar(toupper(c));
  13. }
  14.  
  15.  
  16. // Copyright (c) 1990 by Tom Swan. All rights reserved
  17. // Revision 1.00    Date: 10/24/1990   Time: 08:32 am
  18.  
  19. // Revision 1.01    Date: 07/08/1991   Time: 05:41 pm
  20. // Converted for Borland C++ 2.0
  21.  
  22.